const net.hexDigit
8 uses
net (current package)
dnsclient.go#L42: buf = append(buf, hexDigit[v&0xF],
dnsclient.go#L44: hexDigit[v>>4],
ip.go#L313: s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
mac.go#L7: const hexDigit = "0123456789abcdef"
mac.go#L21: buf = append(buf, hexDigit[b>>4])
mac.go#L22: buf = append(buf, hexDigit[b&0xF])
parse.go#L191: dst = append(dst, hexDigit[v&0xf])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |